home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 44 / PC Actual CD 44.iso / Linux / Cygwin / full.exe / Disk1 / data1.cab / Tools / H-i586-cygwin32 / i586-cygwin32 / include / sys / times.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-04  |  501 b   |  28 lines

  1. #ifndef    _SYS_TIMES_H
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #define    _SYS_TIMES_H
  6.  
  7. #include <_ansi.h>
  8. #include <machine/types.h>
  9.  
  10. #ifndef __clock_t_defined
  11. typedef _CLOCK_T_ clock_t;
  12. #define __clock_t_defined
  13. #endif
  14.  
  15. struct tms {
  16.     clock_t    tms_utime;        /* user time */
  17.     clock_t    tms_stime;        /* system time */
  18.     clock_t    tms_cutime;        /* user time, children */
  19.     clock_t    tms_cstime;        /* system time, children */
  20. };
  21.  
  22. clock_t _EXFUN(times,(struct tms *));
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27. #endif    /* !_SYS_TIMES_H */
  28.